home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part2 / 13229 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.0 KB

  1. Path: news.compuserve.com!newsmaster
  2. From: 101513.2141@compuserve.com (Jean-Marc Delforge)
  3. Newsgroups: comp.lang.c
  4. Subject: Re: MS Visual C++ Question
  5. Date: Fri, 05 Apr 1996 12:21:21 GMT
  6. Organization: CompuServe Incorporated
  7. Message-ID: <4k2voa$nfj@arl-news-svc-3.compuserve.com>
  8. References: <4juagg$b7i@srvr1.engin.umich.edu>
  9. NNTP-Posting-Host: dd46-157.compuserve.com
  10. X-Newsreader: Forte Free Agent 1.0.82
  11.  
  12. morse@engin.umich.edu (christopher  morse) wrote:
  13.  
  14. >I am getting a build error that is not listed in the help
  15. >file in MSVC.  Does anyone recognize what the problem is?
  16.  
  17. >The build error is:
  18.  
  19. >error C2900: 'pop' : huge array cannot be aligned to segment boundary
  20.  
  21. >Thanks
  22.  
  23. MSVC is the Visual C++ compiler for 16 bits platforms.
  24. If So, you get this error because the size of your object (the array)
  25. is higher than 64 K, The size of a segment.
  26. There is no other way to solve this problem than reducing the size of
  27. your array.
  28.  
  29. Best regards
  30. JM Delforge (101513,2141@compuserve.com)
  31. Brussels
  32.  
  33. Jean-Marc Delforge
  34. 101513.2141@compuserve.com
  35. Smals - Brussels
  36.  
  37.